home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 003-desktop.lzm / usr / bin / dcopidlng < prev    next >
Encoding:
Text File  |  2005-09-10  |  344 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. trap "rm -f dcopidlng.stderr.$$" 0 1 2 15
  4.  
  5. if test -z "$KDECONFIG"; then
  6.     KDECONFIG=kde-config
  7. fi
  8. LIBDIR="`$KDECONFIG --install data --expandvars`/dcopidlng"
  9. perl -I"$LIBDIR" "$LIBDIR/kalyptus" --allow_k_dcop_accessors -f dcopidl $1 2> dcopidlng.stderr.$$
  10. RET=$?
  11. if [ $RET -ne 0 ]
  12. then
  13.    cat dcopidlng.stderr.$$ >&2
  14. fi
  15. exit $RET
  16.